ActivityLogEntry

@Serializable
data class ActivityLogEntry(val id: String, val dateTime: Instant, val events: List<ActivityLogEvent>)

Represents an entry in the activity log.

Each entry contains one or more ActivityLogEvent instances that describe credential or presentation events that occurred at a specific point in time.

Constructors

Link copied to clipboard
constructor(id: String, dateTime: Instant, events: List<ActivityLogEvent>)

Properties

Link copied to clipboard
val dateTime: Instant

The date and time at which the activity log entry was recorded.

Link copied to clipboard

The events associated with this activity log entry.

Link copied to clipboard
val id: String

The unique identifier of the activity log entry.